home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
FishMarket 1.0
/
FishMarket v1.0.iso
/
fishies
/
276-300
/
disk_280
/
graph
/
object
/
default.c
next >
Wrap
C/C++ Source or Header
|
1992-05-06
|
661b
|
35 lines
/*
* GRAPH, Version 1.00 - 4 August 1989
*
* Copyright 1989, David Gay. All Rights Reserved.
* This software is freely redistrubatable.
*/
/* Default object methods */
#include "object.h"
#include "object/default.h"
#include "uio.h"
int notdone(struct object *this)
{
message(this->g, "Routine unimplemented", (char *)NULL);
return FALSE;
}
struct Region *ref_uncalled(struct object *this)
{
message(this->g, "Hurrah! You've found a bug!", (char *)NULL);
return NULL;
}
int uncalled(struct object *this)
{
message(this->g, "Hurrah! You've found a bug!", (char *)NULL);
return FALSE;
}